@charset "UTF-8";
@import url("html5reset-1.6.1.css");
@import url('https://fonts.googleapis.com/css?family=Nunito:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap');

/*--------------------テンプレート情報--------------------*/
/*template　Maison de R*/
/*url　https://maisonder.web.fc2.com/*/
/*title　Nostalgic Ribbon*/
/*code　CSS3*/

/*--------------------ライセンス--------------------*/

/*HTML5 Reset Stylesheet
html5doctor.com Reset Stylesheet v1.6.1
http://html5doctor.com/html-5-reset-stylesheet/
Copyright Richard Clark - http://richclarkdesign.com
Released under the CC0 Public Domain Dedication and MIT License
http://opensource.org/licenses/mit-license.php
*/

/*
jQuery v3.3.1
http://jquery.com/
(c) JS Foundation and other contributors
Released under the MIT license
http://jquery.org/license
http://opensource.org/licenses/mit-license.php
*/

/*
jQuery Smooth scroll
Handy Web Design
https://handywebdesign.net/2017/10/jquery-smooth-scroll/
*/

/*
Google Fonts
"Nunito" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
https://fonts.google.com/(Vernon Adams)
"Pinyon Script" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://www.google.com/fonts(Nicole Fally)
"Libre Baskerville" is lisenced under the SIL Open Font License
http://scripts.sil.org/OFL
by https://www.google.com/fonts(Impallari Type)
*/

/*
Font Awesome(Font License)
"font-awesome" is lisenced under the SIL Open Font License 1.1
http://scripts.sil.org/OFL
https://fontawesome.com/v4.7.0/
*/

/*
Font Awesome(Code License)
https://fontawesome.com/v4.7.0/
Released under the MIT license
https://fontawesome.com/v4.7.0/license/
http://opensource.org/licenses/mit-license.php
*/


/*基本*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: break-all;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*フォーム周辺のデザインをリセット*/
}

html {}

body {
    font-family: 'Nunito', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #927E77;
    letter-spacing: 0.04em;
    text-align: left;
    background: #F8F1EF;
    /*モバイル端末でのテキストサイズの自動調整対策*/
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/*フロート解除*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

a {
    color: #816763;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*アニメーション*/
}

a:hover {
    color: #b8917c;
}

img {
    max-width: 100%;
    /*フルードイメージ（親要素の幅に応じて縦横比を保持したまま自動的に画像の拡大縮小をする）*/
    height: auto;
    vertical-align: bottom;
    /*ディセンダー対策（画像の下の隙間を無くす）*/
}

a img {
    /*アニメーション*/
    -webkit-transition: 0.2s;
    transition: 0.2s;
    /*画像リンクの枠線を消す*/
    border: 0;
}

a img:hover {
    opacity: 0.7;
}

strong {
    font-weight: normal;
    padding: 0 0.5em;
    background: #fff9f5;
    border-radius: 2px;
}

ul {
    list-style-type: none;
    /*リストマークを非表示*/
    list-style-position: inside;
    /*リストマークを内側に表示*/
}

.ul1 {
    /*ulリスト用1（縦リスト/テキスト用）*/
}

.ul1 li {
    margin-top: 0.25em;
}

.ul1 li:first-child {
    margin-top: 0;
}

.ul1 span {
    margin-right: 1em;
}

.dl1 {
    /*dlリスト用1（テキスト用/dtとddで一組*/
}

.dl1 dt {
    margin-top: 0.25em;
}

.dl1 dt:first-child {
    margin-top: 0;
}

.dl1 dt span::before {
    /*FontAwesome*/
    content: "\f105";
    margin-right: 0.5em;
    font-family: FontAwesome;
}

.ul1 span,
.dl1 dt span {
    /*span共通 マーカー風ライン*/
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #fdede4));
    background: linear-gradient(transparent 40%, #fdede4 0%);
}

.pagetop {
    /*ページトップボタン*/
    position: fixed;
    /*固定*/
    bottom: 8px;
    right: 8px;
    z-index: 2;
    /*リボンと重ならないための対策*/
}

.pagetop a {
    display: block;
    /*リンク範囲の拡張*/
    background: #D8C9C8;
    color: #fff9f5;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    /*heightの値と揃える*/
    border-radius: 15px;
    /*widthとheightの値の半分にすると円になる*/
}

.pagetop a:hover {
    color: #fff9f5;
    background: #E4D8D8;
}


/*フォント*/

header h1 {
    font-family: 'Pinyon Script', cursive;
    font-weight: normal;
}

header h1 + span {
    font-family: 'Nunito', "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
}

section h1,
nav h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
}


/*テキスト 位置*/

header,
section h1,
nav {
    text-align: center;
}


/*テキスト 行の高さ*/

header h1 {
    line-height: 1.3;
}

.text,
footer {
    line-height: 1.7;
}


/*テキスト 文字間隔*/

header h1 + span,
section h1,
nav h1 {
    letter-spacing: 0.14em;
}

nav ul li {
    letter-spacing: 0.08em;
}

.pagetop {
    letter-spacing: 0;
}


/*ページの枠組み*/

#all {}

.wrap1 {
    padding: 40px 20px;
}

.wrap2 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/*ヘッダー*/

header {}

.title {}

.title a {
    /*タイトル部分をまとめてリンク指定*/
    display: inline-block;
    /*リンク範囲の拡張*/
    padding: 1em;
    color: #816763;
    text-decoration: none;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.title a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

header h1 {
    font-size: 26px;
}

header h1 + span {
    display: block;
    font-size: 9px;
    margin-top: 1.2em;
}


/*メイン*/

main {
    margin-top: 50px;
}

section {
    margin-top: 50px;
}

section:first-child {
    margin-top: 0;
}

section h1 {
    font-size: 13px;
    margin-bottom: 2em;
}


/*セクション リボン*/

.ribbon {
    display: block;
    position: relative;
    height: 30px;
    /*リボンの高さ*/
    line-height: 30px;
    /*リボンの高さ*/
    vertical-align: middle;
    padding: 0 30px;
    /*横の大きさ*/
    background: #D2C5C3;
    /*塗りつぶし色*/
    color: #FFF8F7;
    /*文字色*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ribbon:before,
.ribbon:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}

.ribbon:before {
    top: 0;
    left: 0;
    border-width: 15px 0px 15px 15px;
    /*1番目と3番目の数値は.ribbonのheightの半分の数値を指定する*/
    border-color: transparent transparent transparent #F8F1EF;
    /*4番目の色はbodyの色と揃える*/
    border-style: solid;
}

.ribbon:after {
    top: 0;
    right: 0;
    border-width: 15px 15px 15px 0px;
    /*1番目と3番目の数値は.ribbonのheightの半分の数値を指定する*/
    border-color: transparent #F8F1EF transparent transparent;
    /*2番目の色はbodyの色と揃える*/
    border-style: solid;
}


/*本文エリア*/

.text {
    border-top: solid 1px transparent;
    /*マージンの相殺対策*/
    padding: 0 1.5em;
}

.text > p,
.text > ul,
.text > dl {
    /*本文エリア タグ間の余白*/
    margin-top: 1em;
}

.text > p:first-child,
.text > ul:first-child,
.text > dl:first-child {
    /*本文エリア タグ間の余白 先頭の要素を無効*/
    margin-top: 0;
}


/*ナビ*/

nav {
    margin-top: 50px;
}

nav ul {
    /*フレックスコンテナ*/
    margin-top: 0.25em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*フレックスボックス*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*折り返す*/
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*横配置 中央*/
}

nav ul li {
    /*フレックスアイテム*/
    margin: 0.5em 0.5em 0 0;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    display: block;
    /*リンク範囲の拡張*/
    text-decoration: none;
    padding: 0.25em 1em;
    background: #222;
    color: #fff9f5;
    border-radius: 2px;
}

nav ul li a:hover {
    color: #fff9f5;
    background: #D8C9C8;
}

nav p span:first-child {
    margin-right: 1em;
}

nav p span:first-child::before {
    /*FontAwesome*/
    color: white;
    content: "\f177";
    margin-right: 0.8em;
    font-family: FontAwesome;
}

nav p span:last-child::after {
    /*FontAwesome*/
    color: white;
    content: "\f178";
    margin-left: 0.8em;
    font-family: FontAwesome;
}


/*ナビ 水平線デザインの見出し*/

nav h1 {
    /*フレックスコンテナ*/
    font-size: 13px;
    margin-bottom: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*フレックスボックス*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*縦位置 中央*/
}

nav h1::before,
nav h1::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    border-top: 3px double #927E77;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    /*残りの領域を埋める*/
}

nav h1::before {
    margin-right: 1em;
}

nav h1::after {
    margin-left: 1em;
}


/*フッター*/

footer {
    margin-top: 50px;
}

footer ul {}

footer ul li {
    float: left;
    margin-right: 1em;
}

footer ul li:last-child {
    margin-right: 0;
}


/*------------画面サイズ768px以上用（大きい画面サイズ向け）------------*/

@media screen and (min-width:768px) {
    .wrap1 {
        padding: 60px 50px 50px;
    }

    .title::before {
        width: 400px;
        height: 300px;
    }

    header h1 {
        font-size: 30px;
    }

    header h1 + span {
        margin-top: 1.5em;
    }
}

/*ベンダープレフィックス記述済*/
/*エラーチェック済*/
